
[dbo].[MatchingGiftPlanTypeRef]
CREATE TABLE [dbo].[MatchingGiftPlanTypeRef]
(
[MatchingGiftPlanTypeKey] [uniqueidentifier] NOT NULL,
[IsActive] [bit] NOT NULL CONSTRAINT [DF_MatchingGiftPlanTypeRef_IsActive] DEFAULT ((1)),
[MatchingGiftPlanDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[MatchingGiftPlanTypeRef] ADD CONSTRAINT [PK_MatchingGiftPlanTypeRef] PRIMARY KEY CLUSTERED ([MatchingGiftPlanTypeKey]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[MatchingGiftPlanTypeRef] ADD CONSTRAINT [AK_MatchingGiftPlanTypeRef_MatchingGiftPlanTypeDesc] UNIQUE NONCLUSTERED ([MatchingGiftPlanDesc]) ON [PRIMARY]
GO